home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / mawk10.zip / JMP.H < prev    next >
C/C++ Source or Header  |  1991-10-05  |  1KB  |  45 lines

  1.  
  2. /********************************************
  3. jmp.h
  4. copyright 1991, Michael D. Brennan
  5.  
  6. This is a source file for mawk, an implementation of
  7. the AWK programming language.
  8.  
  9. Mawk is distributed without warranty under the terms of
  10. the GNU General Public License, version 2, 1991.
  11. ********************************************/
  12.  
  13. /* $Log:    jmp.h,v $
  14.  * Revision 3.3.1.1  91/09/14  17:23:35  brennan
  15.  * VERSION 1.0
  16.  * 
  17.  * Revision 3.3  91/08/13  06:51:40  brennan
  18.  * VERSION .9994
  19.  * 
  20.  * Revision 3.2  91/06/28  04:16:55  brennan
  21.  * VERSION 0.999
  22.  * 
  23.  * Revision 3.1  91/06/07  10:27:45  brennan
  24.  * VERSION 0.995
  25.  * 
  26.  * Revision 2.1  91/04/08  08:23:21  brennan
  27.  * VERSION 0.97
  28.  * 
  29. */
  30.  
  31. #ifndef   JMP_H
  32. #define   JMP_H
  33.  
  34. void  PROTO(BC_new, (void) ) ;
  35. void  PROTO(BC_insert, (int, INST*) ) ;
  36. void  PROTO(BC_clear, (INST *, INST *) ) ;
  37. void  PROTO(code_push, (INST *, unsigned) ) ;
  38. unsigned  PROTO(code_pop, (INST *) ) ;
  39. void  PROTO(code_jmp, (int, INST *, INST *) ) ;
  40. void  PROTO(patch_jmp, (INST *) ) ;
  41.  
  42.  
  43. #endif  /* JMP_H  */
  44.  
  45.